home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getgid.c,v < prev    next >
Text File  |  1988-06-19  |  1KB  |  87 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.22;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * getgid.c --
  26.  *
  27.  *    Procedure to map from Unix getgid system call to Sprite.
  28.  *
  29.  * Copyright (C) 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: open.c,v 1.3 86/04/17 21:58:32 andrew Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38. #include "compatInt.h"
  39.  
  40.  
  41. /*
  42.  *----------------------------------------------------------------------
  43.  *
  44.  * getgid --
  45.  *
  46.  *    Procedure to map from Unix getgid system call to Sprite 
  47.  *    Proc_GetGroupIDs. 
  48.  *
  49.  * Results:
  50.  *    The sprite group id is returned for now.
  51.  *
  52.  * Side effects:
  53.  *    None.
  54.  *
  55.  *----------------------------------------------------------------------
  56.  */
  57.  
  58. int
  59. getgid()
  60. {
  61.     return(155);
  62. }
  63.  
  64. /*
  65.  *----------------------------------------------------------------------
  66.  *
  67.  * getegid --
  68.  *
  69.  *    Procedure to map from Unix getgid system call to Sprite 
  70.  *    Proc_GetGroupIDs. 
  71.  *
  72.  * Results:
  73.  *    The sprite group id is returned for now.
  74.  *
  75.  * Side effects:
  76.  *    None.
  77.  *
  78.  *----------------------------------------------------------------------
  79.  */
  80.  
  81. int
  82. getegid()
  83. {
  84.     return(155);
  85. }
  86. @
  87.